home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / INT2B.HDR < prev    next >
Text File  |  1994-04-25  |  694b  |  30 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _Int2B(nInteger, nPlaces) --> cBinString
  8.  
  9. PARAMETERS:
  10.  
  11. nInteger: integer value to convert to binary string
  12. nPlaces : Number of binary places to return (1-8)
  13.  
  14. SHORT:
  15.  
  16. Convert integer to binary string
  17.  
  18. DESCRIPTION:
  19.  
  20. _Int2B() converts integer numerics to equivalent binary string representation.
  21.  
  22. NOTE:
  23.  
  24. EXAMPLE:
  25.  
  26. ? _Int2B(13,4)  // "1101"
  27. ? _Int2B(13,8)  // "0001101"
  28.  
  29. ******************************************************************************/
  30.